/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 50px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: white;
  background-image: url("sedlyfe.png")
}

/* Header */
header {
  text-align: center;
  background-color: #4CAF50;
  color: white;
  padding: 1em 0;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin: 0.5em 0 0;
  font-size: 1.2em;
}

/* Main Content */
main {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
}

.post {
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post h2 {
  margin-top: 0;
  color: #4CAF50;
}

.post .date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px 0;
  background-color: #333;
  color: white;
  font-size: 0.9em;
}
